home *** CD-ROM | disk | FTP | other *** search
-
- /*
- Copyright 1993 Jeremy Slade.
-
- You are free to use all or any parts of the Bypass project
- however you wish, just give credit where credit is due.
- The author (Jeremy Slade) shall not be held responsible
- for any damages that result out of use or misuse of any
- part of this project.
-
- */
-
- /*
- Project: Bypass
-
- File: Bypass_main.m
-
- Description:
-
- This is the module containing main(). main()'s duties for this
- program are:
- 1. Allocate and Init the BypassController
- 2. Tell the BypassController to run.
-
- Original Author: Jeremy Slade
-
- Revision History:
- Created
- JGS Sat Apr 10 15:04:13 MDT 1993
-
- */
-
- #import <stdlib.h>
- #import "BypassController.h"
-
-
- void main ( int argc, char *argv[] )
- {
- id controller;
-
- // Create the BypassController
- controller = [[BypassController alloc] init];
-
- // Tell the controller to run
- exit ( [controller run] );
- }
-
-